home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / ADVC10.LZH / ADVC.QRF < prev    next >
Text File  |  1987-02-09  |  2KB  |  49 lines

  1.                         ADVC Quick Reference Document
  2.  
  3.  
  4.         E = Equipment,  I = Input,  M = Misc,  S = String,  V = Video
  5.  
  6.                       * = use of nonstandard C features
  7.  
  8.  
  9.  
  10.  
  11. E*  commports       get number of serial ports installed
  12. E*  displaytype     see if display is color or monochrome
  13. E*  getdrive        get letter of default disk drive
  14. E*  joystick        see if a joystick port is installed
  15. E*  limmfree        see how much expanded memory is available
  16. E*  limmtotal       see how much expanded memory is installed
  17. E*  printports      get number of parallel ports installed
  18. E*  totalmem        return amount of normal memory installed
  19.  
  20. I*  getkey          wait for one of a list of keys to be pressed
  21. I*  mousebuttons    see if mouse buttons are pressed
  22. I*  mousecheck      see if a mouse is installed, and how many buttons it has
  23. I*  mouseclick      see if mouse buttons were clicked
  24. I*  mousecol        see what column the mouse cursor is in
  25. I*  mousecursor     turn mouse cursor on or off
  26. I*  mouseloc        set the mouse cursor location
  27. I*  mouserow        see what row the mouse cursor is in
  28.  
  29. M*  delay           wait for a specified number of seconds
  30.  
  31. S   any2dec         convert a string of a given base to a number
  32. S   bsqueeze        squeeze blanks from a string
  33. S   bunsqueeze      unsqueeze a blank-squeezed string
  34. S   dec2any         convert a number to a string of a given base
  35. S   extract         extract a delimited substring from a string
  36. S   locase          convert a string to lowercase
  37. S   multiand        AND the elements of a string with a given value
  38. S   multior         OR the elements of a string with a given value
  39. S   multixor        XOR the elements of a string with a given value
  40. S   reverse         reverse the order of the chrs in a string
  41. S   soundex         calculate the soundex code for a string
  42. S   strip           strip occurrences of a given chr from a string
  43. S   striprange      strip a given (inclusive) range of chrs from a string
  44. S   upcase          convert a string to uppercase
  45.  
  46. V*  bkscroll        scroll an area of the screen down (or clear it)
  47. V*  clreol          clear from cursor to end of line
  48. V*  scroll          scroll an area of the screen up (or clear it)
  49.